Mosfet Driver Module, up-to 5A - IRF520
- Was RM9.00
-
RM4.00
- Product Code: IRF520 MOS FET
- Availability: In Stock
This little module is a breakout board for the IFR520 MOSFET transistor (Metal Oxide Semiconductor Field-effect Transistor), a module can adjust the output PWM. The module is designed to switch heavy DC loads from a single digital pin of your microcontroller. Its main purpose is to provide a low-cost way to drive a DC motor for robotics applications, but the module can be used to control most high current DC loads. Screw terminals are provided to interface to your load and external power source. A LED indicator provides a visual indication of when your load is being switched.
Applications
LED lights dimmer, variable speed for DC motors, miniature pumps, solenoid valves
Specifications
Suggest to use a 100k / 10k variable resistor and a 1N4004 diode at the motor end.
#include "HCMotor.h" //Include HCMotor Code Library #define MOTOR_PIN 6 // Assign to PWM/Digital Pin 6 #define POT_PIN A0 // Set analog pin at A0 for the potentiometer HCMotor HCMotor; // Create an instance code library void setup() { HCMotor.Init(); //Initialise our library HCMotor.attach(0, DCMOTOR, MOTOR_PIN); // Attach our motor to 0 to digital pin 6 HCMotor.DutyCycle(0, 100); //Set duty cycle of the PWM Pulse with Modulation signal in 100uS increment to 100uS = 1mS cycle } void loop() { int Speed; Speed = map(analogRead(POT_PIN), 0, 1024, 0, 100); //Reading the A0 pin to determine the position of the pot. //mapping the motor which could be 0 - 1024 and reduce down to match the cyccle range of 0 to 100 HCMotor.OnTime(0, Speed); // Set the duty cycle to match the position }
Tags: Mosfet